home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / GDIMETA.PAK / PENDLG.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  2KB  |  52 lines

  1. // THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF
  2. // ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO
  3. // THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A
  4. // PARTICULAR PURPOSE.
  5. //
  6. // Copyright (C) 1993-1995  Microsoft Corporation.  All Rights Reserved.
  7. //
  8. // PURPOSE:
  9. //    Contains declarations for the pen style dialog.
  10. //
  11.  
  12. //
  13. // Because the Windows NT headers don't include the GDI symbols when calls
  14. // from RC, this makes sure that the PS_SOLID etc values are defined.
  15. //
  16.  
  17. #ifndef PS_SOLID
  18.  
  19. /* Pen Styles */
  20. #define PS_SOLID            0
  21. #define PS_DASH             1       /* -------  */
  22. #define PS_DOT              2       /* .......  */
  23. #define PS_DASHDOT          3       /* _._._._  */
  24. #define PS_DASHDOTDOT       4       /* _.._.._  */
  25. #define PS_NULL             5
  26. #define PS_INSIDEFRAME      6
  27. #define PS_USERSTYLE        7
  28. #define PS_ALTERNATE        8
  29.  
  30. #endif // ifndef PS_SOLID
  31.  
  32. //-------------------------------------------------------------------------
  33. // Control ID's for the Pen dialog
  34.  
  35. #define IDD_PENWIDTH                301
  36. #define IDD_PENEXAMPLE              302
  37. #define IDD_PENCOLOR                303
  38.  
  39. #define IDD_PENSTYLE                350
  40. #define IDD_SOLIDPEN                (IDD_PENSTYLE + PS_SOLID)
  41. #define IDD_DASH                    (IDD_PENSTYLE + PS_DASH)
  42. #define IDD_DOT                     (IDD_PENSTYLE + PS_DOT)
  43. #define IDD_DASHDOT                 (IDD_PENSTYLE + PS_DASHDOT)
  44. #define IDD_DASHDOTDOT              (IDD_PENSTYLE + PS_DASHDOTDOT)
  45. #define IDD_NULLPEN                 (IDD_PENSTYLE + PS_NULL)
  46. #define IDD_INSIDEFRAME             (IDD_PENSTYLE + PS_INSIDEFRAME)
  47. #define IDD_PENFIRST                IDD_SOLIDPEN
  48. #define IDD_PENLAST                 IDD_INSIDEFRAME
  49.  
  50. // Prototype for the Pen dialog procedure
  51. LRESULT CALLBACK PenDlg(HWND, UINT, WPARAM, LPARAM);
  52.